/* ===============================
   FORMAL, PROFESSIONAL TESTIMONIALS SECTION
   =============================== */

.tourist-reviews-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  background: #f6f4f2; /* soft elegant neutral */
}

.tourist-reviews-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1c1c1c;
}

/* ===== Slider ===== */
.tourist-reviews-slider {
  width: 100%;
  overflow: hidden;
}

.tourist-reviews-container {
  display: flex;
  gap: 32px;
  transition: transform 0.45s ease; /* smooth, minimal */
  align-items: center;
}

/* ===== Testimonial Card (Formal Version) ===== */
.tourist-review-card {
  min-width: 70%;
  max-width: 70%;

  padding: 32px;
  border-radius: 20px;

  background: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);

  text-align: center;
  transform: scale(0.94);
  opacity: 0.75;

  transition:
    transform 0.4s ease,
    opacity 0.4s ease,
    box-shadow 0.4s ease;
}

/* Active Card */
.tourist-review-card.active {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.tourist-review-card p {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #333;
  margin-bottom: 18px;
}

.tourist-review-card h4 {
  margin-top: 10px;
  font-weight: 600;
  color: #222;
  font-size: 1.05rem;
}

/* ===== Dots ===== */
.tourist-reviews-dots {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  gap: 10px;
}

.tourist-reviews-dots button {
  width: 10px;
  height: 10px;
  background: #bfbfbf;
  border-radius: 50%;
  border: none;
  transition: background 0.3s ease;
}

.tourist-reviews-dots button.active {
  background: #333;
}

/* ===== Mobile Optimized ===== */
@media (max-width: 600px) {
  .tourist-review-card {
    min-width: 90%;
    max-width: 90%;
    padding: 22px;
    border-radius: 18px;
  }

  .tourist-review-card p {
    font-size: 1rem;
  }
}
